home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / blob2.pov < prev    next >
Encoding:
Text File  |  1992-08-09  |  1.3 KB  |  64 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2. // By Dan Farmer
  3. #include "include.inc"
  4.  
  5. camera {
  6.    location  <0 1 -4>
  7.    direction <0 0 FoV_45>
  8.    up        <0 1 0>
  9.    right     <1.333 0 0>
  10.    look_at   <0 0 0>
  11.    }
  12.  
  13. object {
  14.    light_source {
  15.       <15 25 -20>
  16.       color red 1 green 1 blue 0.85
  17.       }
  18.    }
  19. object {
  20.    light_source {
  21.       < 5 -10 -25>
  22.       color red 0.85 green 0.85 blue 1
  23.       }
  24.    }
  25.  
  26. object {
  27.    light_source {
  28.       < 0 -0.1 0>
  29.       color White
  30.       }
  31.    }
  32.  
  33. object {
  34.     blob {
  35.         threshold 0.6
  36.         component 1.0 1.0  <-0.900  0.000  0.000>
  37.         component 1.0 1.0  < 0.900  0.000  0.000>
  38.         component 1.0 1.0  < 0.000  0.000 -0.900>
  39.         component 1.0 1.0  < 0.000  0.000  0.900>
  40.       sturm
  41.     }
  42.     texture {
  43.         Metal
  44.         onion
  45.         color_map {
  46.             [0.0 0.20  color Blue  color Green]
  47.             [0.20 0.40  color Green  color Yellow]
  48.             [0.40 0.60  color Yellow color Orange]
  49.             [0.60 0.85 color Orange color Red]
  50.             [0.80 1.0 color Red color Blue]
  51.         }
  52.     }
  53.     rotate <90 0 0>
  54.     scale <0.5 1 0.5>
  55. }
  56. object {
  57.     quadric { Ellipsoid scale <0.5 0.5 0.5> }
  58.     texture {
  59.     Metal
  60.     color White
  61.     }
  62.     scale <0.5 1 0.5>
  63. }
  64.